home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 16
/
CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso
/
CUCD
/
Graphics
/
Ghostscript
/
batch
/
ps2pdf
< prev
next >
Wrap
Text File
|
1997-08-14
|
524b
|
33 lines
#!/bin/sh
# Convert PostScript to PDF.
OPTIONS=""
while true
do
case "$1" in
-*) OPTIONS="$OPTIONS $1" ;;
*) break ;;
esac
shift
done
if [ $# -lt 1 -o $# -gt 2 ]; then
echo "Usage: `basename $0` [options...] input.ps [output.pdf]" 1>&2
exit 1
fi
infile=$1;
if [ $# -eq 1 ]
then
case "${infile}" in
*.ps) base=`basename ${infile} .ps` ;;
*) base=`basename ${infile}` ;;
esac
outfile=${base}.pdf
else
outfile=$2
fi
exec gs -q -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=$outfile $OPTIONS $infile -c quit